home *** CD-ROM | disk | FTP | other *** search
- // -----
- // VDL158.txt
- // Copyright 1996 Claris
- // -----
-
-
- //Tool Palette
-
- /************************** LOCALIZED STRING CONSTANTS BEGIN **************************************/
- /************************** LOCALIZED STRING CONSTANTS BEGIN **************************************/
- /************************** LOCALIZED STRING CONSTANTS BEGIN **************************************/
-
- //This section contains all localizable string constants for this VDL program. Be sure to
- //include the backslash character at the end of each line of a multi-line string, except for the last line.
- //You may also flatten multiline constants into a single line, if you prefer
-
- #define kLit1 "Insert CheckBox"
- #define kLit2 "Insert Radio Button"
- #define kLit3 "Insert Submit Button"
- #define kLit4 "Insert Reset Button"
- #define kLit5 "Insert Text Area"
- #define kLit6 "Insert Entry Field"
- #define kLit7 "Insert Password Field"
- #define kLit8 "Insert Popup"
- #define kLit9 "Insert Image"
- #define kLit10 "Insert Horizontal Rule"
- #define kLit11 "Insert Table"
- #define kLit12 "Make Anchor"
-
- /************************** LOCALIZED STRING CONSTANTS END **************************************/
- /************************** LOCALIZED STRING CONSTANTS END **************************************/
- /************************** LOCALIZED STRING CONSTANTS END **************************************/
-
-
-
- /************************** LOCALIZED NUMERICAL CONSTANTS BEGIN **************************************/
- /************************** LOCALIZED NUMERICAL CONSTANTS BEGIN **************************************/
- /************************** LOCALIZED NUMERICAL CONSTANTS BEGIN **************************************/
-
- //This section contains integer constants that are used to format this VDL program.
- //These are localizable - they only need to be changed if the localized strings
- //are sufficiently longer than the US strings. Localize the strings first, then the constants.
-
- //No constants
-
- /************************** LOCALIZED NUMERICAL CONSTANTS END **************************************/
- /************************** LOCALIZED NUMERICAL CONSTANTS END **************************************/
- /************************** LOCALIZED NUMERICAL CONSTANTS END **************************************/
-
- //No further localizable data past this point
-
- /************************** END LOCALIZABLE DATA ***************************************************/
- /************************** END LOCALIZABLE DATA ***************************************************/
- /************************** END LOCALIZABLE DATA ***************************************************/
-
-
- #if Platform_Mac
- #define ToolSep Spacer(Height = UseParent, Width = 1, BackColor = {0,0,0});
- #else
- #define ToolSep
- #endif
-
- #if Platform_Mac
- #define ToolBack BackColor = {57015, 57015, 57015}
- #else
- #define ToolBack BackColor = Dialog
- #endif
-
- #define EH EnabledHelpString =
-
-
- Define(FirstRow)
- HList(ToolBack)
- {
- ToolSep
- PictPushButton(3082, "None",Draggable,
- EH kLit1)
- {
- Enabled(Draw, 'cicn',13001 );
- Disabled(Draw, 'cicn',13041 );
- Tracking(Draw, 'cicn',13021 );
- };
- ToolSep
-
- PictPushButton(3083, "None",Draggable,
- EH kLit2)
- {
- Enabled(Draw, 'cicn',13002 );
- Disabled(Draw, 'cicn',13042 );
- Tracking(Draw, 'cicn',13022 );
- };
- ToolSep
-
- PictPushButton(3088, "None", Draggable,
- EH kLit3)
- {
- Enabled(Draw, 'cicn',13006 );
- Disabled(Draw, 'cicn',13046 );
- Tracking(Draw, 'cicn',13026 );
- };
- ToolSep
-
- PictPushButton(3089, "None",Draggable,
- EH kLit4)
- {
- Enabled(Draw, 'cicn',13007 );
- Disabled(Draw, 'cicn',13047 );
- Tracking(Draw, 'cicn',13027 );
- };
- ToolSep
-
- } //Button Commands
-
-
-
- Define(SecondRow)
- HList(ToolBack)
- {
- ToolSep
- PictPushButton(3084, "None",Draggable,
- EH kLit5)
- {
- Enabled(Draw, 'cicn',13000 );
- Disabled(Draw, 'cicn',13040 );
- Tracking(Draw, 'cicn',13020 );
- };
- ToolSep
-
- PictPushButton(3085, "None",Draggable,
- EH kLit6)
- {
- Enabled(Draw, 'cicn',13004 );
- Disabled(Draw, 'cicn',13044 );
- Tracking(Draw, 'cicn',13024 );
- };
- ToolSep
-
- PictPushButton(3086, "None",Draggable,
- EH kLit7)
- {
- Enabled(Draw, 'cicn',13009 );
- Disabled(Draw, 'cicn',13049 );
- Tracking(Draw, 'cicn',13029 );
- };
- ToolSep
-
- PictPushButton(3087, "None",Draggable,
- EH kLit8)
- {
- Enabled(Draw, 'cicn',13008 );
- Disabled(Draw, 'cicn',13048 );
- Tracking(Draw, 'cicn',13028 );
- };
- ToolSep
-
- } //SecondRow
-
- #if Platform_Win
-
- Margin(5,5,5,5,ToolBack)
- VList() //Base V Array
- {
- Call(FirstRow);
- Call(SecondRow);
- } //Base V Array
-
-
- #else
-
- Margin(5,5,5,5,ToolBack)
- Layout(AllowOverlap)
- {
- Margin(0,0,0,0, Left=0, Top=0)
- Call(FirstRow);
- Margin(0,0,0,0, Left=0, Top=22)
- Call(SecondRow);
- } //Base V Array
-
- #endif
-
-